home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1997 December / Electronic Clipper 1997-12.iso / Idea Source® / Main.Dir / 00011_Script_11 < prev    next >
Text File  |  1997-11-05  |  326b  |  19 lines

  1. on exitFrame
  2.   go the frame
  3.   
  4.   repeat with n=2 to 8
  5.     if rollover(n) then
  6.       set the visible of sprite n to false
  7.       updatestage
  8.     end if
  9.   end repeat
  10.   
  11.   repeat with n=2 to 8
  12.     if not rollover(n) then
  13.       set the visible of sprite n to true
  14.       updatestage
  15.     end if
  16.   end repeat
  17.   
  18. end
  19.